Importing Libraries¶

In [12]:
import pandas as pd
import numpy as np
import seaborn as sns
import plotly.express as px
import matplotlib.pyplot as plt
from pandasql import sqldf
from sklearn.model_selection import train_test_split
sql = lambda q: sqldf(q, globals())
pd.set_option('display.max_colwidth', None)
pd.set_option('display.width',None)
pd.set_option('display.max_columns',None)
pd.set_option('display.max_rows',None)
In [13]:
df=pd.read_excel('sn_compliance_control.xlsx')
df.head()
C:\Users\STANLEY\anaconda3\lib\site-packages\openpyxl\styles\stylesheet.py:226: UserWarning: Workbook contains no default style, apply openpyxl's default
  warn("Workbook contains no default style, apply openpyxl's default")
Out[13]:
Number Name Profile Owner Policy Statement State Status Exempt Weighting Active Additional Information Additional comments Attestation Attestation respondents Category Class Classification Created Created Manually Created by Description Domain Domain Path Enforcement Frequency From configuration check Key control Owning group Profile type Profile type.1 Source Tags Type Updated Updated by Updates
0 CTRL0010001 Establish and maintain identification mechanism termination procedures. New York Datacenter Patty Bernasconi Establish and maintain identification mechanism termination procedures. Monitor Compliant True 10.0 True NaN NaN GRC Attestation Patty Bernasconi Physical and environmental protection Control Preventive 2016-07-31 16:19:45 False admin Establish and maintain identification mechanism termination procedures. global / NaN NaN False False NaN NaN NaN d85a18e70fd412004e938fbce1050e49, NaN Establish/Maintain Documentation 2018-01-29 18:20:47 admin 9.0
1 CTRL0010002 Review facility access lists. New York Datacenter Patty Bernasconi Review facility access lists. Monitor Not Applicable False 10.0 True NaN NaN GRC Attestation Patty Bernasconi Physical and environmental protection Control Detective 2016-07-31 16:19:46 False admin Review facility access lists. global / NaN NaN False False NaN NaN NaN d85a18e70fd412004e938fbce1050e49, NaN Establish/Maintain Documentation 2017-02-28 12:19:33 admin 6.0
2 CTRL0010003 Manage access to loading docks, unloading docks, and mail rooms. New York Datacenter Patty Bernasconi Manage access to loading docks, unloading docks, and mail rooms. Monitor Compliant False 10.0 True NaN NaN GRC Attestation Patty Bernasconi Physical and environmental protection Control Preventive 2016-07-31 16:19:46 False admin Manage access to loading docks, unloading docks, and mail rooms. global / NaN NaN False False NaN NaN NaN d85a18e70fd412004e938fbce1050e49, NaN Physical and Environmental Protection 2017-02-28 12:19:33 admin 6.0
3 CTRL0010004 Establish and maintain a visitor access permissions policy. New York Datacenter Patty Bernasconi Establish and maintain a visitor access permissions policy. Monitor Not Applicable False 10.0 True NaN NaN GRC Attestation Patty Bernasconi Physical and environmental protection Control Preventive 2016-07-31 16:19:46 False admin Establish and maintain a visitor access permissions policy. global / NaN NaN False False NaN NaN NaN d85a18e70fd412004e938fbce1050e49, NaN Establish/Maintain Documentation 2017-02-28 12:19:33 admin 5.0
4 CTRL0010005 Use locks with electronic authentication systems or cipher locks, as necessary. New York Datacenter Patty Bernasconi Use locks with electronic authentication systems or cipher locks, as necessary. Monitor Compliant False 10.0 True NaN NaN GRC Attestation Patty Bernasconi Physical and environmental protection Control Preventive 2016-07-31 16:19:46 False admin Use locks with electronic authentication systems or cipher locks, as necessary. global / NaN NaN False False NaN NaN NaN d85a18e70fd412004e938fbce1050e49, NaN Configuration 2017-02-28 12:19:33 admin 5.0
In [14]:
df.Domain.value_counts()
Out[14]:
global    1501
Name: Domain, dtype: int64

Check for null values¶

In [15]:
df.isnull().sum()
Out[15]:
Number                         0
Name                           0
Profile                        0
Owner                          3
Policy Statement               3
State                          0
Status                        27
Exempt                         0
Weighting                      0
Active                         0
Additional Information      1501
Additional comments         1501
Attestation                    3
Attestation respondents        3
Category                       3
Class                          0
Classification                 3
Created                        0
Created Manually               0
Created by                     0
Description                   12
Domain                         0
Domain Path                    0
Enforcement                 1501
Frequency                   1501
From configuration check       0
Key control                    0
Owning group                1501
Profile type                1501
Profile type.1              1501
Source                        13
Tags                        1501
Type                           3
Updated                        0
Updated by                     0
Updates                        0
dtype: int64

Removing columns which is completely null¶

In [16]:
drop_cols=df.columns[df.isnull().sum() ==1501]
df.drop(drop_cols,axis=1,inplace=True)
In [17]:
#Since Name,Description and Policy statement are having same values we are replacing
df.Description.fillna(df.Name,inplace=True)
In [18]:
df.isnull().sum()
Out[18]:
Number                       0
Name                         0
Profile                      0
Owner                        3
Policy Statement             3
State                        0
Status                      27
Exempt                       0
Weighting                    0
Active                       0
Attestation                  3
Attestation respondents      3
Category                     3
Class                        0
Classification               3
Created                      0
Created Manually             0
Created by                   0
Description                  0
Domain                       0
Domain Path                  0
From configuration check     0
Key control                  0
Source                      13
Type                         3
Updated                      0
Updated by                   0
Updates                      0
dtype: int64

Excluding the remaining null values by using sql statement¶

In [19]:
df_altered  = sql('select * from df where Status is not null and Source is not null and classification is not null ')
In [20]:
df_altered.isnull().sum() 
Out[20]:
Number                      0
Name                        0
Profile                     0
Owner                       0
Policy Statement            0
State                       0
Status                      0
Exempt                      0
Weighting                   0
Active                      0
Attestation                 0
Attestation respondents     0
Category                    0
Class                       0
Classification              0
Created                     0
Created Manually            0
Created by                  0
Description                 0
Domain                      0
Domain Path                 0
From configuration check    0
Key control                 0
Source                      0
Type                        0
Updated                     0
Updated by                  0
Updates                     0
dtype: int64
In [21]:
df_altered.head(2)
Out[21]:
Number Name Profile Owner Policy Statement State Status Exempt Weighting Active Attestation Attestation respondents Category Class Classification Created Created Manually Created by Description Domain Domain Path From configuration check Key control Source Type Updated Updated by Updates
0 CTRL0010001 Establish and maintain identification mechanism termination procedures. New York Datacenter Patty Bernasconi Establish and maintain identification mechanism termination procedures. Monitor Compliant 1 10.0 1 GRC Attestation Patty Bernasconi Physical and environmental protection Control Preventive 2016-07-31 16:19:45.000000 0 admin Establish and maintain identification mechanism termination procedures. global / 0 0 d85a18e70fd412004e938fbce1050e49, Establish/Maintain Documentation 2018-01-29 18:20:47.000000 admin 9.0
1 CTRL0010002 Review facility access lists. New York Datacenter Patty Bernasconi Review facility access lists. Monitor Not Applicable 0 10.0 1 GRC Attestation Patty Bernasconi Physical and environmental protection Control Detective 2016-07-31 16:19:46.000000 0 admin Review facility access lists. global / 0 0 d85a18e70fd412004e938fbce1050e49, Establish/Maintain Documentation 2017-02-28 12:19:33.000000 admin 6.0
In [22]:
import nltk
nltk.download('all')
from nltk.tokenize import word_tokenize
[nltk_data] Downloading collection 'all'
[nltk_data]    | 
[nltk_data]    | Downloading package abc to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package abc is already up-to-date!
[nltk_data]    | Downloading package alpino to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package alpino is already up-to-date!
[nltk_data]    | Downloading package averaged_perceptron_tagger to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package averaged_perceptron_tagger is already up-
[nltk_data]    |       to-date!
[nltk_data]    | Downloading package averaged_perceptron_tagger_ru to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package averaged_perceptron_tagger_ru is already
[nltk_data]    |       up-to-date!
[nltk_data]    | Downloading package basque_grammars to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package basque_grammars is already up-to-date!
[nltk_data]    | Downloading package biocreative_ppi to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package biocreative_ppi is already up-to-date!
[nltk_data]    | Downloading package bllip_wsj_no_aux to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package bllip_wsj_no_aux is already up-to-date!
[nltk_data]    | Downloading package book_grammars to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package book_grammars is already up-to-date!
[nltk_data]    | Downloading package brown to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package brown is already up-to-date!
[nltk_data]    | Downloading package brown_tei to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package brown_tei is already up-to-date!
[nltk_data]    | Downloading package cess_cat to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package cess_cat is already up-to-date!
[nltk_data]    | Downloading package cess_esp to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package cess_esp is already up-to-date!
[nltk_data]    | Downloading package chat80 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package chat80 is already up-to-date!
[nltk_data]    | Downloading package city_database to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package city_database is already up-to-date!
[nltk_data]    | Downloading package cmudict to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package cmudict is already up-to-date!
[nltk_data]    | Downloading package comparative_sentences to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package comparative_sentences is already up-to-
[nltk_data]    |       date!
[nltk_data]    | Downloading package comtrans to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package comtrans is already up-to-date!
[nltk_data]    | Downloading package conll2000 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package conll2000 is already up-to-date!
[nltk_data]    | Downloading package conll2002 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package conll2002 is already up-to-date!
[nltk_data]    | Downloading package conll2007 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package conll2007 is already up-to-date!
[nltk_data]    | Downloading package crubadan to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package crubadan is already up-to-date!
[nltk_data]    | Downloading package dependency_treebank to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package dependency_treebank is already up-to-date!
[nltk_data]    | Downloading package dolch to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package dolch is already up-to-date!
[nltk_data]    | Downloading package europarl_raw to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package europarl_raw is already up-to-date!
[nltk_data]    | Downloading package extended_omw to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package extended_omw is already up-to-date!
[nltk_data]    | Downloading package floresta to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package floresta is already up-to-date!
[nltk_data]    | Downloading package framenet_v15 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package framenet_v15 is already up-to-date!
[nltk_data]    | Downloading package framenet_v17 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package framenet_v17 is already up-to-date!
[nltk_data]    | Downloading package gazetteers to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package gazetteers is already up-to-date!
[nltk_data]    | Downloading package genesis to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package genesis is already up-to-date!
[nltk_data]    | Downloading package gutenberg to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package gutenberg is already up-to-date!
[nltk_data]    | Downloading package ieer to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package ieer is already up-to-date!
[nltk_data]    | Downloading package inaugural to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package inaugural is already up-to-date!
[nltk_data]    | Downloading package indian to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package indian is already up-to-date!
[nltk_data]    | Downloading package jeita to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package jeita is already up-to-date!
[nltk_data]    | Downloading package kimmo to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package kimmo is already up-to-date!
[nltk_data]    | Downloading package knbc to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package knbc is already up-to-date!
[nltk_data]    | Downloading package large_grammars to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package large_grammars is already up-to-date!
[nltk_data]    | Downloading package lin_thesaurus to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package lin_thesaurus is already up-to-date!
[nltk_data]    | Downloading package mac_morpho to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package mac_morpho is already up-to-date!
[nltk_data]    | Downloading package machado to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package machado is already up-to-date!
[nltk_data]    | Downloading package masc_tagged to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package masc_tagged is already up-to-date!
[nltk_data]    | Downloading package maxent_ne_chunker to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package maxent_ne_chunker is already up-to-date!
[nltk_data]    | Downloading package maxent_treebank_pos_tagger to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package maxent_treebank_pos_tagger is already up-
[nltk_data]    |       to-date!
[nltk_data]    | Downloading package moses_sample to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package moses_sample is already up-to-date!
[nltk_data]    | Downloading package movie_reviews to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package movie_reviews is already up-to-date!
[nltk_data]    | Downloading package mte_teip5 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package mte_teip5 is already up-to-date!
[nltk_data]    | Downloading package mwa_ppdb to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package mwa_ppdb is already up-to-date!
[nltk_data]    | Downloading package names to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package names is already up-to-date!
[nltk_data]    | Downloading package nombank.1.0 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package nombank.1.0 is already up-to-date!
[nltk_data]    | Downloading package nonbreaking_prefixes to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package nonbreaking_prefixes is already up-to-date!
[nltk_data]    | Downloading package nps_chat to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package nps_chat is already up-to-date!
[nltk_data]    | Downloading package omw to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package omw is already up-to-date!
[nltk_data]    | Downloading package omw-1.4 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package omw-1.4 is already up-to-date!
[nltk_data]    | Downloading package opinion_lexicon to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package opinion_lexicon is already up-to-date!
[nltk_data]    | Downloading package panlex_swadesh to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package panlex_swadesh is already up-to-date!
[nltk_data]    | Downloading package paradigms to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package paradigms is already up-to-date!
[nltk_data]    | Downloading package pe08 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package pe08 is already up-to-date!
[nltk_data]    | Downloading package perluniprops to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package perluniprops is already up-to-date!
[nltk_data]    | Downloading package pil to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package pil is already up-to-date!
[nltk_data]    | Downloading package pl196x to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package pl196x is already up-to-date!
[nltk_data]    | Downloading package porter_test to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package porter_test is already up-to-date!
[nltk_data]    | Downloading package ppattach to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package ppattach is already up-to-date!
[nltk_data]    | Downloading package problem_reports to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package problem_reports is already up-to-date!
[nltk_data]    | Downloading package product_reviews_1 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package product_reviews_1 is already up-to-date!
[nltk_data]    | Downloading package product_reviews_2 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package product_reviews_2 is already up-to-date!
[nltk_data]    | Downloading package propbank to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package propbank is already up-to-date!
[nltk_data]    | Downloading package pros_cons to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package pros_cons is already up-to-date!
[nltk_data]    | Downloading package ptb to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package ptb is already up-to-date!
[nltk_data]    | Downloading package punkt to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package punkt is already up-to-date!
[nltk_data]    | Downloading package qc to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package qc is already up-to-date!
[nltk_data]    | Downloading package reuters to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package reuters is already up-to-date!
[nltk_data]    | Downloading package rslp to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package rslp is already up-to-date!
[nltk_data]    | Downloading package rte to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package rte is already up-to-date!
[nltk_data]    | Downloading package sample_grammars to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package sample_grammars is already up-to-date!
[nltk_data]    | Downloading package semcor to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package semcor is already up-to-date!
[nltk_data]    | Downloading package senseval to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package senseval is already up-to-date!
[nltk_data]    | Downloading package sentence_polarity to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package sentence_polarity is already up-to-date!
[nltk_data]    | Downloading package sentiwordnet to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package sentiwordnet is already up-to-date!
[nltk_data]    | Downloading package shakespeare to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package shakespeare is already up-to-date!
[nltk_data]    | Downloading package sinica_treebank to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package sinica_treebank is already up-to-date!
[nltk_data]    | Downloading package smultron to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package smultron is already up-to-date!
[nltk_data]    | Downloading package snowball_data to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package snowball_data is already up-to-date!
[nltk_data]    | Downloading package spanish_grammars to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package spanish_grammars is already up-to-date!
[nltk_data]    | Downloading package state_union to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package state_union is already up-to-date!
[nltk_data]    | Downloading package stopwords to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package stopwords is already up-to-date!
[nltk_data]    | Downloading package subjectivity to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package subjectivity is already up-to-date!
[nltk_data]    | Downloading package swadesh to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package swadesh is already up-to-date!
[nltk_data]    | Downloading package switchboard to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package switchboard is already up-to-date!
[nltk_data]    | Downloading package tagsets to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package tagsets is already up-to-date!
[nltk_data]    | Downloading package timit to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package timit is already up-to-date!
[nltk_data]    | Downloading package toolbox to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package toolbox is already up-to-date!
[nltk_data]    | Downloading package treebank to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package treebank is already up-to-date!
[nltk_data]    | Downloading package twitter_samples to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package twitter_samples is already up-to-date!
[nltk_data]    | Downloading package udhr to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package udhr is already up-to-date!
[nltk_data]    | Downloading package udhr2 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package udhr2 is already up-to-date!
[nltk_data]    | Downloading package unicode_samples to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package unicode_samples is already up-to-date!
[nltk_data]    | Downloading package universal_tagset to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package universal_tagset is already up-to-date!
[nltk_data]    | Downloading package universal_treebanks_v20 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package universal_treebanks_v20 is already up-to-
[nltk_data]    |       date!
[nltk_data]    | Downloading package vader_lexicon to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package vader_lexicon is already up-to-date!
[nltk_data]    | Downloading package verbnet to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package verbnet is already up-to-date!
[nltk_data]    | Downloading package verbnet3 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package verbnet3 is already up-to-date!
[nltk_data]    | Downloading package webtext to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package webtext is already up-to-date!
[nltk_data]    | Downloading package wmt15_eval to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package wmt15_eval is already up-to-date!
[nltk_data]    | Downloading package word2vec_sample to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package word2vec_sample is already up-to-date!
[nltk_data]    | Downloading package wordnet to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package wordnet is already up-to-date!
[nltk_data]    | Downloading package wordnet2021 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package wordnet2021 is already up-to-date!
[nltk_data]    | Downloading package wordnet31 to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package wordnet31 is already up-to-date!
[nltk_data]    | Downloading package wordnet_ic to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package wordnet_ic is already up-to-date!
[nltk_data]    | Downloading package words to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package words is already up-to-date!
[nltk_data]    | Downloading package ycoe to
[nltk_data]    |     C:\Users\STANLEY\AppData\Roaming\nltk_data...
[nltk_data]    |   Package ycoe is already up-to-date!
[nltk_data]    | 
[nltk_data]  Done downloading collection all

Creating new Dataframe¶

In [23]:
df_new=pd.DataFrame()
df_new['Name']=df_altered['Name']

Word Tokenization¶

In [24]:
df_new['Token'] = df_altered['Name'].apply(lambda x:word_tokenize(x))

Case conversion¶

In [25]:
df_new['lower'] = df_new['Token'].apply(lambda x: [word.lower() for word in x])
df_new.head()
Out[25]:
Name Token lower
0 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .]
1 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .]
2 Manage access to loading docks, unloading docks, and mail rooms. [Manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .]
3 Establish and maintain a visitor access permissions policy. [Establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy, .]
4 Use locks with electronic authentication systems or cipher locks, as necessary. [Use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .]

Punctuation Removal¶

In [26]:
import string
punc=string.punctuation
df_new['punc_removed']=df_new['lower'].apply(lambda x: [word for word in x if word not in punc])
df_new.head(2)
Out[26]:
Name Token lower punc_removed
0 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures]
1 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .] [review, facility, access, lists]

Stop words removal¶

In [27]:
from nltk.corpus import *
stop_words = set(stopwords.words('english'))

#custom stopwords
stop_word_filtered = [word for word in stop_words if word not in ["not","no","nor","don't","aren't","couldn't",
                                                             "didn't",
                                                             "doesn't",
                                                             "hadn't",
                                                             "hasn't",
                                                             "haven't",
                                                             "isn't",
                                                             "mightn't",
                                                             "mustn't",
                                                             "needn't",
                                                             "shouldn't",
                                                             "wasn't",
                                                             "weren't",
                                                             "won't",
                                                             "wouldn't"]]
In [28]:
df_new['stopwords_removed'] = df_new['punc_removed'].apply(lambda x: [word for word in x if word not in stop_word_filtered])
df_new.head(2)
Out[28]:
Name Token lower punc_removed stopwords_removed
0 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures] [establish, maintain, identification, mechanism, termination, procedures]
1 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .] [review, facility, access, lists] [review, facility, access, lists]

Lemmatization¶

In [29]:
from nltk.stem import WordNetLemmatizer
In [30]:
#pos tagging
df_new['pos_tags'] = df_new['stopwords_removed'].apply(nltk.tag.pos_tag)
df_new.head(2)
Out[30]:
Name Token lower punc_removed stopwords_removed pos_tags
0 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures] [establish, maintain, identification, mechanism, termination, procedures] [(establish, VB), (maintain, NN), (identification, NN), (mechanism, NN), (termination, NN), (procedures, NNS)]
1 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .] [review, facility, access, lists] [review, facility, access, lists] [(review, NN), (facility, NN), (access, NN), (lists, NNS)]
In [31]:
def get_wordnet_pos(tag):
    if tag.startswith('J'):
        return wordnet.ADJ
    elif tag.startswith('V'):
        return wordnet.VERB
    elif tag.startswith('N'):
        return wordnet.NOUN
    elif tag.startswith('R'):
        return wordnet.ADV
    else:
        return wordnet.NOUN
df_new['wordnet_pos'] = df_new['pos_tags'].apply(lambda x: [(word, get_wordnet_pos(pos_tag)) for (word, pos_tag) in x])
df_new.head()
Out[31]:
Name Token lower punc_removed stopwords_removed pos_tags wordnet_pos
0 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures] [establish, maintain, identification, mechanism, termination, procedures] [(establish, VB), (maintain, NN), (identification, NN), (mechanism, NN), (termination, NN), (procedures, NNS)] [(establish, v), (maintain, n), (identification, n), (mechanism, n), (termination, n), (procedures, n)]
1 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .] [review, facility, access, lists] [review, facility, access, lists] [(review, NN), (facility, NN), (access, NN), (lists, NNS)] [(review, n), (facility, n), (access, n), (lists, n)]
2 Manage access to loading docks, unloading docks, and mail rooms. [Manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, unloading, docks, and, mail, rooms] [manage, access, loading, docks, unloading, docks, mail, rooms] [(manage, NN), (access, NN), (loading, VBG), (docks, NNS), (unloading, VBG), (docks, NNS), (mail, NN), (rooms, NNS)] [(manage, n), (access, n), (loading, v), (docks, n), (unloading, v), (docks, n), (mail, n), (rooms, n)]
3 Establish and maintain a visitor access permissions policy. [Establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy] [establish, maintain, visitor, access, permissions, policy] [(establish, VB), (maintain, NN), (visitor, NN), (access, NN), (permissions, NNS), (policy, NN)] [(establish, v), (maintain, n), (visitor, n), (access, n), (permissions, n), (policy, n)]
4 Use locks with electronic authentication systems or cipher locks, as necessary. [Use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, as, necessary] [use, locks, electronic, authentication, systems, cipher, locks, necessary] [(use, NN), (locks, VBZ), (electronic, JJ), (authentication, NN), (systems, NNS), (cipher, VBP), (locks, NNS), (necessary, JJ)] [(use, n), (locks, v), (electronic, a), (authentication, n), (systems, n), (cipher, v), (locks, n), (necessary, a)]

Word Net Lemmatizer¶

In [32]:
wnl = WordNetLemmatizer()
df_new['lemmatized'] = df_new['wordnet_pos'].apply(lambda x: [wnl.lemmatize(word,pos_tag) for word,pos_tag in x])
df_new.head(2)
Out[32]:
Name Token lower punc_removed stopwords_removed pos_tags wordnet_pos lemmatized
0 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures] [establish, maintain, identification, mechanism, termination, procedures] [(establish, VB), (maintain, NN), (identification, NN), (mechanism, NN), (termination, NN), (procedures, NNS)] [(establish, v), (maintain, n), (identification, n), (mechanism, n), (termination, n), (procedures, n)] [establish, maintain, identification, mechanism, termination, procedure]
1 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .] [review, facility, access, lists] [review, facility, access, lists] [(review, NN), (facility, NN), (access, NN), (lists, NNS)] [(review, n), (facility, n), (access, n), (lists, n)] [review, facility, access, list]

Target Column¶

In [33]:
df_new['Target'] = df_altered['Classification']
df_new
Out[33]:
Name Token lower punc_removed stopwords_removed pos_tags wordnet_pos lemmatized Target
0 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures] [establish, maintain, identification, mechanism, termination, procedures] [(establish, VB), (maintain, NN), (identification, NN), (mechanism, NN), (termination, NN), (procedures, NNS)] [(establish, v), (maintain, n), (identification, n), (mechanism, n), (termination, n), (procedures, n)] [establish, maintain, identification, mechanism, termination, procedure] Preventive
1 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .] [review, facility, access, lists] [review, facility, access, lists] [(review, NN), (facility, NN), (access, NN), (lists, NNS)] [(review, n), (facility, n), (access, n), (lists, n)] [review, facility, access, list] Detective
2 Manage access to loading docks, unloading docks, and mail rooms. [Manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, unloading, docks, and, mail, rooms] [manage, access, loading, docks, unloading, docks, mail, rooms] [(manage, NN), (access, NN), (loading, VBG), (docks, NNS), (unloading, VBG), (docks, NNS), (mail, NN), (rooms, NNS)] [(manage, n), (access, n), (loading, v), (docks, n), (unloading, v), (docks, n), (mail, n), (rooms, n)] [manage, access, load, dock, unload, dock, mail, room] Preventive
3 Establish and maintain a visitor access permissions policy. [Establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy] [establish, maintain, visitor, access, permissions, policy] [(establish, VB), (maintain, NN), (visitor, NN), (access, NN), (permissions, NNS), (policy, NN)] [(establish, v), (maintain, n), (visitor, n), (access, n), (permissions, n), (policy, n)] [establish, maintain, visitor, access, permission, policy] Preventive
4 Use locks with electronic authentication systems or cipher locks, as necessary. [Use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, as, necessary] [use, locks, electronic, authentication, systems, cipher, locks, necessary] [(use, NN), (locks, VBZ), (electronic, JJ), (authentication, NN), (systems, NNS), (cipher, VBP), (locks, NNS), (necessary, JJ)] [(use, n), (locks, v), (electronic, a), (authentication, n), (systems, n), (cipher, v), (locks, n), (necessary, a)] [use, lock, electronic, authentication, system, cipher, lock, necessary] Preventive
5 Monitor for unauthorized physical access at physical entry points. [Monitor, for, unauthorized, physical, access, at, physical, entry, points, .] [monitor, for, unauthorized, physical, access, at, physical, entry, points, .] [monitor, for, unauthorized, physical, access, at, physical, entry, points] [monitor, unauthorized, physical, access, physical, entry, points] [(monitor, NN), (unauthorized, JJ), (physical, JJ), (access, NN), (physical, JJ), (entry, NN), (points, NNS)] [(monitor, n), (unauthorized, a), (physical, a), (access, n), (physical, a), (entry, n), (points, n)] [monitor, unauthorized, physical, access, physical, entry, point] Detective
6 Establish and maintain identification procedures. [Establish, and, maintain, identification, procedures, .] [establish, and, maintain, identification, procedures, .] [establish, and, maintain, identification, procedures] [establish, maintain, identification, procedures] [(establish, VB), (maintain, NN), (identification, NN), (procedures, NNS)] [(establish, v), (maintain, n), (identification, n), (procedures, n)] [establish, maintain, identification, procedure] Preventive
7 Establish and maintain identification issuance procedures for identification cards or badges. [Establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges, .] [establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges, .] [establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges] [establish, maintain, identification, issuance, procedures, identification, cards, badges] [(establish, VB), (maintain, NN), (identification, NN), (issuance, NN), (procedures, NNS), (identification, VBP), (cards, NNS), (badges, NNS)] [(establish, v), (maintain, n), (identification, n), (issuance, n), (procedures, n), (identification, v), (cards, n), (badges, n)] [establish, maintain, identification, issuance, procedure, identification, card, badge] Preventive
8 Use locks to protect against unauthorized physical access. [Use, locks, to, protect, against, unauthorized, physical, access, .] [use, locks, to, protect, against, unauthorized, physical, access, .] [use, locks, to, protect, against, unauthorized, physical, access] [use, locks, protect, unauthorized, physical, access] [(use, NN), (locks, NNS), (protect, VBP), (unauthorized, JJ), (physical, JJ), (access, NN)] [(use, n), (locks, n), (protect, v), (unauthorized, a), (physical, a), (access, n)] [use, lock, protect, unauthorized, physical, access] Preventive
9 Secure physical entry points with physical access controls or security guards. [Secure, physical, entry, points, with, physical, access, controls, or, security, guards, .] [secure, physical, entry, points, with, physical, access, controls, or, security, guards, .] [secure, physical, entry, points, with, physical, access, controls, or, security, guards] [secure, physical, entry, points, physical, access, controls, security, guards] [(secure, NN), (physical, JJ), (entry, NN), (points, NNS), (physical, JJ), (access, NN), (controls, NNS), (security, NN), (guards, NNS)] [(secure, n), (physical, a), (entry, n), (points, n), (physical, a), (access, n), (controls, n), (security, n), (guards, n)] [secure, physical, entry, point, physical, access, control, security, guard] Detective
10 Authorize visitors before granting entry to physical areas containing restricted data or restricted information. [Authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information, .] [authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information, .] [authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information] [authorize, visitors, granting, entry, physical, areas, containing, restricted, data, restricted, information] [(authorize, JJ), (visitors, NNS), (granting, VBG), (entry, NN), (physical, JJ), (areas, NNS), (containing, VBG), (restricted, VBN), (data, NNS), (restricted, VBN), (information, NN)] [(authorize, a), (visitors, n), (granting, v), (entry, n), (physical, a), (areas, n), (containing, v), (restricted, v), (data, n), (restricted, v), (information, n)] [authorize, visitor, grant, entry, physical, area, contain, restrict, data, restrict, information] Preventive
11 Control physical access to (and within) the facility. [Control, physical, access, to, (, and, within, ), the, facility, .] [control, physical, access, to, (, and, within, ), the, facility, .] [control, physical, access, to, and, within, the, facility] [control, physical, access, within, facility] [(control, NN), (physical, JJ), (access, NN), (within, IN), (facility, NN)] [(control, n), (physical, a), (access, n), (within, n), (facility, n)] [control, physical, access, within, facility] Preventive
12 Escort uncleared personnel who need to work in or access secure areas. [Escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas, .] [escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas, .] [escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas] [escort, uncleared, personnel, need, work, access, secure, areas] [(escort, NN), (uncleared, VBD), (personnel, NNS), (need, VBP), (work, NN), (access, NN), (secure, NN), (areas, NNS)] [(escort, n), (uncleared, v), (personnel, n), (need, v), (work, n), (access, n), (secure, n), (areas, n)] [escort, uncleared, personnel, need, work, access, secure, area] Preventive
13 Identify and document physical access controls for all physical entry points. [Identify, and, document, physical, access, controls, for, all, physical, entry, points, .] [identify, and, document, physical, access, controls, for, all, physical, entry, points, .] [identify, and, document, physical, access, controls, for, all, physical, entry, points] [identify, document, physical, access, controls, physical, entry, points] [(identify, VB), (document, JJ), (physical, JJ), (access, NN), (controls, NNS), (physical, JJ), (entry, NN), (points, NNS)] [(identify, v), (document, a), (physical, a), (access, n), (controls, n), (physical, a), (entry, n), (points, n)] [identify, document, physical, access, control, physical, entry, point] Preventive
14 Escort visitors within the facility, as necessary. [Escort, visitors, within, the, facility, ,, as, necessary, .] [escort, visitors, within, the, facility, ,, as, necessary, .] [escort, visitors, within, the, facility, as, necessary] [escort, visitors, within, facility, necessary] [(escort, NN), (visitors, NNS), (within, IN), (facility, NN), (necessary, JJ)] [(escort, n), (visitors, n), (within, n), (facility, n), (necessary, a)] [escort, visitor, within, facility, necessary] Preventive
15 Maintain and review facility access lists of personnel who have been granted authorized entry to (and within) facilities that contain restricted data or restricted information. [Maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, (, and, within, ), facilities, that, contain, restricted, data, or, restricted, information, .] [maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, (, and, within, ), facilities, that, contain, restricted, data, or, restricted, information, .] [maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, and, within, facilities, that, contain, restricted, data, or, restricted, information] [maintain, review, facility, access, lists, personnel, granted, authorized, entry, within, facilities, contain, restricted, data, restricted, information] [(maintain, NN), (review, NN), (facility, NN), (access, NN), (lists, NNS), (personnel, NNS), (granted, VBN), (authorized, JJ), (entry, NN), (within, IN), (facilities, NNS), (contain, VBP), (restricted, VBN), (data, NNS), (restricted, VBN), (information, NN)] [(maintain, n), (review, n), (facility, n), (access, n), (lists, n), (personnel, n), (granted, v), (authorized, a), (entry, n), (within, n), (facilities, n), (contain, v), (restricted, v), (data, n), (restricted, v), (information, n)] [maintain, review, facility, access, list, personnel, grant, authorized, entry, within, facility, contain, restrict, data, restrict, information] Preventive
16 Document the continuity plan exercise test results and provide them to senior management. [Document, the, continuity, plan, exercise, test, results, and, provide, them, to, senior, management, .] [document, the, continuity, plan, exercise, test, results, and, provide, them, to, senior, management, .] [document, the, continuity, plan, exercise, test, results, and, provide, them, to, senior, management] [document, continuity, plan, exercise, test, results, provide, senior, management] [(document, NN), (continuity, NN), (plan, NN), (exercise, VBP), (test, NN), (results, NNS), (provide, VBP), (senior, JJ), (management, NN)] [(document, n), (continuity, n), (plan, n), (exercise, v), (test, n), (results, n), (provide, v), (senior, a), (management, n)] [document, continuity, plan, exercise, test, result, provide, senior, management] Preventive
17 Transport backup media in lockable electronic media storage containers. [Transport, backup, media, in, lockable, electronic, media, storage, containers, .] [transport, backup, media, in, lockable, electronic, media, storage, containers, .] [transport, backup, media, in, lockable, electronic, media, storage, containers] [transport, backup, media, lockable, electronic, media, storage, containers] [(transport, NN), (backup, NN), (media, NNS), (lockable, JJ), (electronic, JJ), (media, NNS), (storage, NN), (containers, NNS)] [(transport, n), (backup, n), (media, n), (lockable, a), (electronic, a), (media, n), (storage, n), (containers, n)] [transport, backup, medium, lockable, electronic, medium, storage, container] Preventive
18 Separate the off-site electronic media storage facilities from the primary facility through geographic separation. [Separate, the, off-site, electronic, media, storage, facilities, from, the, primary, facility, through, geographic, separation, .] [separate, the, off-site, electronic, media, storage, facilities, from, the, primary, facility, through, geographic, separation, .] [separate, the, off-site, electronic, media, storage, facilities, from, the, primary, facility, through, geographic, separation] [separate, off-site, electronic, media, storage, facilities, primary, facility, geographic, separation] [(separate, JJ), (off-site, JJ), (electronic, JJ), (media, NNS), (storage, NN), (facilities, NNS), (primary, VBP), (facility, NN), (geographic, JJ), (separation, NN)] [(separate, a), (off-site, a), (electronic, a), (media, n), (storage, n), (facilities, n), (primary, v), (facility, n), (geographic, a), (separation, n)] [separate, off-site, electronic, medium, storage, facility, primary, facility, geographic, separation] Detective
19 Separate the alternate facility from the primary facility through geographic separation. [Separate, the, alternate, facility, from, the, primary, facility, through, geographic, separation, .] [separate, the, alternate, facility, from, the, primary, facility, through, geographic, separation, .] [separate, the, alternate, facility, from, the, primary, facility, through, geographic, separation] [separate, alternate, facility, primary, facility, geographic, separation] [(separate, JJ), (alternate, NN), (facility, NN), (primary, JJ), (facility, NN), (geographic, JJ), (separation, NN)] [(separate, a), (alternate, n), (facility, n), (primary, a), (facility, n), (geographic, a), (separation, n)] [separate, alternate, facility, primary, facility, geographic, separation] Preventive
20 Install a generator sized to support the facility. [Install, a, generator, sized, to, support, the, facility, .] [install, a, generator, sized, to, support, the, facility, .] [install, a, generator, sized, to, support, the, facility] [install, generator, sized, support, facility] [(install, JJ), (generator, NN), (sized, VBD), (support, NN), (facility, NN)] [(install, a), (generator, n), (sized, v), (support, n), (facility, n)] [install, generator, size, support, facility] Preventive
21 Designate an alternate facility in the continuity plan. [Designate, an, alternate, facility, in, the, continuity, plan, .] [designate, an, alternate, facility, in, the, continuity, plan, .] [designate, an, alternate, facility, in, the, continuity, plan] [designate, alternate, facility, continuity, plan] [(designate, NN), (alternate, NN), (facility, NN), (continuity, NN), (plan, NN)] [(designate, n), (alternate, n), (facility, n), (continuity, n), (plan, n)] [designate, alternate, facility, continuity, plan] Detective
22 Establish and maintain Service Level Agreements for all alternate facilities. [Establish, and, maintain, Service, Level, Agreements, for, all, alternate, facilities, .] [establish, and, maintain, service, level, agreements, for, all, alternate, facilities, .] [establish, and, maintain, service, level, agreements, for, all, alternate, facilities] [establish, maintain, service, level, agreements, alternate, facilities] [(establish, VB), (maintain, NN), (service, NN), (level, NN), (agreements, NNS), (alternate, VBP), (facilities, NNS)] [(establish, v), (maintain, n), (service, n), (level, n), (agreements, n), (alternate, v), (facilities, n)] [establish, maintain, service, level, agreement, alternate, facility] Preventive
23 Include damaged site continuity procedures that cover continuing operations in a partially functional primary facility in the continuity plan. [Include, damaged, site, continuity, procedures, that, cover, continuing, operations, in, a, partially, functional, primary, facility, in, the, continuity, plan, .] [include, damaged, site, continuity, procedures, that, cover, continuing, operations, in, a, partially, functional, primary, facility, in, the, continuity, plan, .] [include, damaged, site, continuity, procedures, that, cover, continuing, operations, in, a, partially, functional, primary, facility, in, the, continuity, plan] [include, damaged, site, continuity, procedures, cover, continuing, operations, partially, functional, primary, facility, continuity, plan] [(include, NN), (damaged, VBN), (site, NN), (continuity, NN), (procedures, VBZ), (cover, RP), (continuing, VBG), (operations, NNS), (partially, RB), (functional, JJ), (primary, JJ), (facility, NN), (continuity, NN), (plan, NN)] [(include, n), (damaged, v), (site, n), (continuity, n), (procedures, v), (cover, r), (continuing, v), (operations, n), (partially, r), (functional, a), (primary, a), (facility, n), (continuity, n), (plan, n)] [include, damage, site, continuity, procedures, cover, continue, operation, partially, functional, primary, facility, continuity, plan] Preventive
24 Store backup media at an off-site electronic media storage facility. [Store, backup, media, at, an, off-site, electronic, media, storage, facility, .] [store, backup, media, at, an, off-site, electronic, media, storage, facility, .] [store, backup, media, at, an, off-site, electronic, media, storage, facility] [store, backup, media, off-site, electronic, media, storage, facility] [(store, NN), (backup, NN), (media, NNS), (off-site, JJ), (electronic, JJ), (media, NNS), (storage, NN), (facility, NN)] [(store, n), (backup, n), (media, n), (off-site, a), (electronic, a), (media, n), (storage, n), (facility, n)] [store, backup, medium, off-site, electronic, medium, storage, facility] Preventive
25 Prepare the alternate facility for an emergency offsite relocation. [Prepare, the, alternate, facility, for, an, emergency, offsite, relocation, .] [prepare, the, alternate, facility, for, an, emergency, offsite, relocation, .] [prepare, the, alternate, facility, for, an, emergency, offsite, relocation] [prepare, alternate, facility, emergency, offsite, relocation] [(prepare, NN), (alternate, JJ), (facility, NN), (emergency, NN), (offsite, CD), (relocation, NN)] [(prepare, n), (alternate, a), (facility, n), (emergency, n), (offsite, n), (relocation, n)] [prepare, alternate, facility, emergency, offsite, relocation] Preventive
26 Test the continuity plan at the alternate facility. [Test, the, continuity, plan, at, the, alternate, facility, .] [test, the, continuity, plan, at, the, alternate, facility, .] [test, the, continuity, plan, at, the, alternate, facility] [test, continuity, plan, alternate, facility] [(test, NN), (continuity, NN), (plan, NN), (alternate, VBP), (facility, NN)] [(test, n), (continuity, n), (plan, n), (alternate, v), (facility, n)] [test, continuity, plan, alternate, facility] Detective
27 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
28 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
29 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
30 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
31 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
32 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
33 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
34 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
35 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
36 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
37 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
38 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
39 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
40 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
41 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
42 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
43 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
44 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
45 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
46 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
47 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
48 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
49 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
50 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
51 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
52 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
53 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
54 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
55 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
56 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
57 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
58 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
59 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
60 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
61 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
62 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
63 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
64 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
65 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
66 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
67 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
68 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
69 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
70 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
71 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
72 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
73 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
74 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
75 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
76 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
77 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
78 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
79 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
80 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
81 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
82 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
83 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
84 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
85 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
86 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
87 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
88 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
89 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
90 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
91 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
92 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
93 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
94 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
95 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
96 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
97 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
98 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
99 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
100 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
101 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
102 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
103 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
104 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
105 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
106 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
107 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
108 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
109 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
110 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
111 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
112 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
113 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
114 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
115 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
116 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
117 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
118 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
119 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
120 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
121 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
122 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
123 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
124 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
125 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
126 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
127 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
128 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
129 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
130 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
131 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
132 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
133 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
134 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
135 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
136 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
137 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
138 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
139 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
140 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
141 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
142 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
143 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
144 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
145 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
146 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
147 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
148 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
149 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
150 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
151 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
152 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
153 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
154 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
155 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
156 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
157 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
158 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
159 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
160 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
161 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
162 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
163 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
164 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
165 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
166 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
167 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
168 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
169 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
170 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
171 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
172 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
173 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
174 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
175 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
176 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
177 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
178 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
179 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
180 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
181 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
182 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
183 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
184 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
185 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
186 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
187 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
188 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
189 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
190 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
191 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
192 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
193 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
194 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
195 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
196 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
197 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
198 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
199 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
200 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
201 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
202 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
203 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
204 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
205 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
206 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
207 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
208 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
209 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
210 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
211 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
212 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
213 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
214 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
215 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
216 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
217 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
218 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
219 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
220 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
221 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
222 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
223 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
224 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
225 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
226 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
227 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
228 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
229 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
230 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
231 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
232 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
233 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
234 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
235 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
236 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
237 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
238 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
239 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
240 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
241 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
242 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
243 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
244 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
245 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
246 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
247 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
248 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
249 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
250 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
251 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
252 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
253 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
254 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
255 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
256 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
257 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
258 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
259 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
260 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
261 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
262 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
263 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
264 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
265 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
266 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
267 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
268 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
269 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
270 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
271 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
272 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
273 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
274 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
275 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
276 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
277 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
278 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
279 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
280 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
281 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
282 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
283 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
284 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
285 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
286 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
287 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
288 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
289 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
290 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
291 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
292 Establish and maintain a patch management program. [Establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program, .] [establish, and, maintain, a, patch, management, program] [establish, maintain, patch, management, program] [(establish, VB), (maintain, NN), (patch, JJ), (management, NN), (program, NN)] [(establish, v), (maintain, n), (patch, a), (management, n), (program, n)] [establish, maintain, patch, management, program] Preventive
293 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
294 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
295 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
296 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
297 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
298 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
299 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
300 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
301 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
302 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
303 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
304 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
305 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
306 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
307 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
308 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
309 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
310 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
311 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
312 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
313 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
314 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
315 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
316 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
317 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
318 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
319 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
320 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
321 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
322 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
323 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
324 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
325 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
326 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
327 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
328 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
329 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
330 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
331 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
332 Establish and maintain emergency change procedures. [Establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures, .] [establish, and, maintain, emergency, change, procedures] [establish, maintain, emergency, change, procedures] [(establish, VB), (maintain, NN), (emergency, NN), (change, NN), (procedures, NNS)] [(establish, v), (maintain, n), (emergency, n), (change, n), (procedures, n)] [establish, maintain, emergency, change, procedure] Preventive
333 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
334 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
335 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
336 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
337 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
338 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
339 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
340 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
341 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
342 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
343 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
344 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
345 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
346 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
347 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
348 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
349 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
350 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
351 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
352 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
353 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
354 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
355 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
356 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
357 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
358 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
359 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
360 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
361 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
362 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
363 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
364 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
365 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
366 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
367 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
368 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
369 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
370 Establish and maintain a software release policy. [Establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy, .] [establish, and, maintain, a, software, release, policy] [establish, maintain, software, release, policy] [(establish, VB), (maintain, NN), (software, NN), (release, NN), (policy, NN)] [(establish, v), (maintain, n), (software, n), (release, n), (policy, n)] [establish, maintain, software, release, policy] Preventive
371 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
372 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
373 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
374 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
375 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
376 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
377 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
378 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
379 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
380 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
381 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
382 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
383 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
384 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
385 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
386 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
387 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
388 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
389 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
390 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
391 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
392 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
393 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
394 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
395 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
396 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
397 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
398 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
399 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
400 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
401 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
402 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
403 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
404 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
405 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
406 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
407 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
408 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
409 Implement approved changes. [Implement, approved, changes, .] [implement, approved, changes, .] [implement, approved, changes] [implement, approved, changes] [(implement, NN), (approved, VBD), (changes, NNS)] [(implement, n), (approved, v), (changes, n)] [implement, approve, change] Preventive
410 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
411 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
412 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
413 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
414 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
415 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
416 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
417 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
418 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
419 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
420 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
421 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
422 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
423 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
424 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
425 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
426 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
427 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
428 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
429 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
430 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
431 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
432 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
433 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
434 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
435 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
436 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
437 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
438 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
439 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
440 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
441 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
442 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
443 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
444 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
445 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
446 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
447 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
448 Perform risk assessments prior to approving change requests. [Perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests, .] [perform, risk, assessments, prior, to, approving, change, requests] [perform, risk, assessments, prior, approving, change, requests] [(perform, NN), (risk, NN), (assessments, NNS), (prior, JJ), (approving, VBG), (change, NN), (requests, NNS)] [(perform, n), (risk, n), (assessments, n), (prior, a), (approving, v), (change, n), (requests, n)] [perform, risk, assessment, prior, approve, change, request] Preventive
449 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
450 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
451 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
452 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
453 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
454 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
455 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
456 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
457 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
458 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
459 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
460 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
461 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
462 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
463 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
464 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
465 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
466 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
467 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
468 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
469 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
470 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
471 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
472 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
473 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
474 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
475 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
476 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
477 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
478 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
479 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
480 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
481 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
482 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
483 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
484 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
485 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
486 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
487 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
488 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
489 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
490 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
491 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
492 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
493 Manage change requests. [Manage, change, requests, .] [manage, change, requests, .] [manage, change, requests] [manage, change, requests] [(manage, NN), (change, NN), (requests, NNS)] [(manage, n), (change, n), (requests, n)] [manage, change, request] Preventive
494 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
495 Manage changes. [Manage, changes, .] [manage, changes, .] [manage, changes] [manage, changes] [(manage, NN), (changes, NNS)] [(manage, n), (changes, n)] [manage, change] Preventive
496 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
497 Update associated documentation after the system configuration has been changed. [Update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed, .] [update, associated, documentation, after, the, system, configuration, has, been, changed] [update, associated, documentation, system, configuration, changed] [(update, NN), (associated, VBN), (documentation, NN), (system, NN), (configuration, NN), (changed, VBD)] [(update, n), (associated, v), (documentation, n), (system, n), (configuration, n), (changed, v)] [update, associate, documentation, system, configuration, change] Preventive
498 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
499 Approve change requests prior to implementing approved changes. [Approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes, .] [approve, change, requests, prior, to, implementing, approved, changes] [approve, change, requests, prior, implementing, approved, changes] [(approve, VB), (change, NN), (requests, NNS), (prior, RB), (implementing, VBG), (approved, VBN), (changes, NNS)] [(approve, v), (change, n), (requests, n), (prior, r), (implementing, v), (approved, v), (changes, n)] [approve, change, request, prior, implement, approve, change] Preventive
500 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
501 Update the system's backup procedures after an approved change has occurred. [Update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred, .] [update, the, system, 's, backup, procedures, after, an, approved, change, has, occurred] [update, system, 's, backup, procedures, approved, change, occurred] [(update, JJ), (system, NN), ('s, POS), (backup, NN), (procedures, NNS), (approved, VBD), (change, NN), (occurred, VBD)] [(update, a), (system, n), ('s, n), (backup, n), (procedures, n), (approved, v), (change, n), (occurred, v)] [update, system, 's, backup, procedure, approve, change, occur] Preventive
502 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
503 Establish and maintain a change control program. [Establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program, .] [establish, and, maintain, a, change, control, program] [establish, maintain, change, control, program] [(establish, VB), (maintain, NN), (change, NN), (control, NN), (program, NN)] [(establish, v), (maintain, n), (change, n), (control, n), (program, n)] [establish, maintain, change, control, program] Preventive
504 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures] [establish, maintain, identification, mechanism, termination, procedures] [(establish, VB), (maintain, NN), (identification, NN), (mechanism, NN), (termination, NN), (procedures, NNS)] [(establish, v), (maintain, n), (identification, n), (mechanism, n), (termination, n), (procedures, n)] [establish, maintain, identification, mechanism, termination, procedure] Preventive
505 Establish and maintain identification mechanism termination procedures. [Establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures, .] [establish, and, maintain, identification, mechanism, termination, procedures] [establish, maintain, identification, mechanism, termination, procedures] [(establish, VB), (maintain, NN), (identification, NN), (mechanism, NN), (termination, NN), (procedures, NNS)] [(establish, v), (maintain, n), (identification, n), (mechanism, n), (termination, n), (procedures, n)] [establish, maintain, identification, mechanism, termination, procedure] Preventive
506 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .] [review, facility, access, lists] [review, facility, access, lists] [(review, NN), (facility, NN), (access, NN), (lists, NNS)] [(review, n), (facility, n), (access, n), (lists, n)] [review, facility, access, list] Detective
507 Review facility access lists. [Review, facility, access, lists, .] [review, facility, access, lists, .] [review, facility, access, lists] [review, facility, access, lists] [(review, NN), (facility, NN), (access, NN), (lists, NNS)] [(review, n), (facility, n), (access, n), (lists, n)] [review, facility, access, list] Detective
508 Manage access to loading docks, unloading docks, and mail rooms. [Manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, unloading, docks, and, mail, rooms] [manage, access, loading, docks, unloading, docks, mail, rooms] [(manage, NN), (access, NN), (loading, VBG), (docks, NNS), (unloading, VBG), (docks, NNS), (mail, NN), (rooms, NNS)] [(manage, n), (access, n), (loading, v), (docks, n), (unloading, v), (docks, n), (mail, n), (rooms, n)] [manage, access, load, dock, unload, dock, mail, room] Preventive
509 Manage access to loading docks, unloading docks, and mail rooms. [Manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, ,, unloading, docks, ,, and, mail, rooms, .] [manage, access, to, loading, docks, unloading, docks, and, mail, rooms] [manage, access, loading, docks, unloading, docks, mail, rooms] [(manage, NN), (access, NN), (loading, VBG), (docks, NNS), (unloading, VBG), (docks, NNS), (mail, NN), (rooms, NNS)] [(manage, n), (access, n), (loading, v), (docks, n), (unloading, v), (docks, n), (mail, n), (rooms, n)] [manage, access, load, dock, unload, dock, mail, room] Preventive
510 Establish and maintain a visitor access permissions policy. [Establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy] [establish, maintain, visitor, access, permissions, policy] [(establish, VB), (maintain, NN), (visitor, NN), (access, NN), (permissions, NNS), (policy, NN)] [(establish, v), (maintain, n), (visitor, n), (access, n), (permissions, n), (policy, n)] [establish, maintain, visitor, access, permission, policy] Preventive
511 Establish and maintain a visitor access permissions policy. [Establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy, .] [establish, and, maintain, a, visitor, access, permissions, policy] [establish, maintain, visitor, access, permissions, policy] [(establish, VB), (maintain, NN), (visitor, NN), (access, NN), (permissions, NNS), (policy, NN)] [(establish, v), (maintain, n), (visitor, n), (access, n), (permissions, n), (policy, n)] [establish, maintain, visitor, access, permission, policy] Preventive
512 Use locks with electronic authentication systems or cipher locks, as necessary. [Use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, as, necessary] [use, locks, electronic, authentication, systems, cipher, locks, necessary] [(use, NN), (locks, VBZ), (electronic, JJ), (authentication, NN), (systems, NNS), (cipher, VBP), (locks, NNS), (necessary, JJ)] [(use, n), (locks, v), (electronic, a), (authentication, n), (systems, n), (cipher, v), (locks, n), (necessary, a)] [use, lock, electronic, authentication, system, cipher, lock, necessary] Preventive
513 Use locks with electronic authentication systems or cipher locks, as necessary. [Use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, ,, as, necessary, .] [use, locks, with, electronic, authentication, systems, or, cipher, locks, as, necessary] [use, locks, electronic, authentication, systems, cipher, locks, necessary] [(use, NN), (locks, VBZ), (electronic, JJ), (authentication, NN), (systems, NNS), (cipher, VBP), (locks, NNS), (necessary, JJ)] [(use, n), (locks, v), (electronic, a), (authentication, n), (systems, n), (cipher, v), (locks, n), (necessary, a)] [use, lock, electronic, authentication, system, cipher, lock, necessary] Preventive
514 Monitor for unauthorized physical access at physical entry points. [Monitor, for, unauthorized, physical, access, at, physical, entry, points, .] [monitor, for, unauthorized, physical, access, at, physical, entry, points, .] [monitor, for, unauthorized, physical, access, at, physical, entry, points] [monitor, unauthorized, physical, access, physical, entry, points] [(monitor, NN), (unauthorized, JJ), (physical, JJ), (access, NN), (physical, JJ), (entry, NN), (points, NNS)] [(monitor, n), (unauthorized, a), (physical, a), (access, n), (physical, a), (entry, n), (points, n)] [monitor, unauthorized, physical, access, physical, entry, point] Detective
515 Monitor for unauthorized physical access at physical entry points. [Monitor, for, unauthorized, physical, access, at, physical, entry, points, .] [monitor, for, unauthorized, physical, access, at, physical, entry, points, .] [monitor, for, unauthorized, physical, access, at, physical, entry, points] [monitor, unauthorized, physical, access, physical, entry, points] [(monitor, NN), (unauthorized, JJ), (physical, JJ), (access, NN), (physical, JJ), (entry, NN), (points, NNS)] [(monitor, n), (unauthorized, a), (physical, a), (access, n), (physical, a), (entry, n), (points, n)] [monitor, unauthorized, physical, access, physical, entry, point] Detective
516 Establish and maintain identification procedures. [Establish, and, maintain, identification, procedures, .] [establish, and, maintain, identification, procedures, .] [establish, and, maintain, identification, procedures] [establish, maintain, identification, procedures] [(establish, VB), (maintain, NN), (identification, NN), (procedures, NNS)] [(establish, v), (maintain, n), (identification, n), (procedures, n)] [establish, maintain, identification, procedure] Preventive
517 Establish and maintain identification procedures. [Establish, and, maintain, identification, procedures, .] [establish, and, maintain, identification, procedures, .] [establish, and, maintain, identification, procedures] [establish, maintain, identification, procedures] [(establish, VB), (maintain, NN), (identification, NN), (procedures, NNS)] [(establish, v), (maintain, n), (identification, n), (procedures, n)] [establish, maintain, identification, procedure] Preventive
518 Establish and maintain identification issuance procedures for identification cards or badges. [Establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges, .] [establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges, .] [establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges] [establish, maintain, identification, issuance, procedures, identification, cards, badges] [(establish, VB), (maintain, NN), (identification, NN), (issuance, NN), (procedures, NNS), (identification, VBP), (cards, NNS), (badges, NNS)] [(establish, v), (maintain, n), (identification, n), (issuance, n), (procedures, n), (identification, v), (cards, n), (badges, n)] [establish, maintain, identification, issuance, procedure, identification, card, badge] Preventive
519 Establish and maintain identification issuance procedures for identification cards or badges. [Establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges, .] [establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges, .] [establish, and, maintain, identification, issuance, procedures, for, identification, cards, or, badges] [establish, maintain, identification, issuance, procedures, identification, cards, badges] [(establish, VB), (maintain, NN), (identification, NN), (issuance, NN), (procedures, NNS), (identification, VBP), (cards, NNS), (badges, NNS)] [(establish, v), (maintain, n), (identification, n), (issuance, n), (procedures, n), (identification, v), (cards, n), (badges, n)] [establish, maintain, identification, issuance, procedure, identification, card, badge] Preventive
520 Use locks to protect against unauthorized physical access. [Use, locks, to, protect, against, unauthorized, physical, access, .] [use, locks, to, protect, against, unauthorized, physical, access, .] [use, locks, to, protect, against, unauthorized, physical, access] [use, locks, protect, unauthorized, physical, access] [(use, NN), (locks, NNS), (protect, VBP), (unauthorized, JJ), (physical, JJ), (access, NN)] [(use, n), (locks, n), (protect, v), (unauthorized, a), (physical, a), (access, n)] [use, lock, protect, unauthorized, physical, access] Preventive
521 Use locks to protect against unauthorized physical access. [Use, locks, to, protect, against, unauthorized, physical, access, .] [use, locks, to, protect, against, unauthorized, physical, access, .] [use, locks, to, protect, against, unauthorized, physical, access] [use, locks, protect, unauthorized, physical, access] [(use, NN), (locks, NNS), (protect, VBP), (unauthorized, JJ), (physical, JJ), (access, NN)] [(use, n), (locks, n), (protect, v), (unauthorized, a), (physical, a), (access, n)] [use, lock, protect, unauthorized, physical, access] Preventive
522 Secure physical entry points with physical access controls or security guards. [Secure, physical, entry, points, with, physical, access, controls, or, security, guards, .] [secure, physical, entry, points, with, physical, access, controls, or, security, guards, .] [secure, physical, entry, points, with, physical, access, controls, or, security, guards] [secure, physical, entry, points, physical, access, controls, security, guards] [(secure, NN), (physical, JJ), (entry, NN), (points, NNS), (physical, JJ), (access, NN), (controls, NNS), (security, NN), (guards, NNS)] [(secure, n), (physical, a), (entry, n), (points, n), (physical, a), (access, n), (controls, n), (security, n), (guards, n)] [secure, physical, entry, point, physical, access, control, security, guard] Detective
523 Secure physical entry points with physical access controls or security guards. [Secure, physical, entry, points, with, physical, access, controls, or, security, guards, .] [secure, physical, entry, points, with, physical, access, controls, or, security, guards, .] [secure, physical, entry, points, with, physical, access, controls, or, security, guards] [secure, physical, entry, points, physical, access, controls, security, guards] [(secure, NN), (physical, JJ), (entry, NN), (points, NNS), (physical, JJ), (access, NN), (controls, NNS), (security, NN), (guards, NNS)] [(secure, n), (physical, a), (entry, n), (points, n), (physical, a), (access, n), (controls, n), (security, n), (guards, n)] [secure, physical, entry, point, physical, access, control, security, guard] Detective
524 Authorize visitors before granting entry to physical areas containing restricted data or restricted information. [Authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information, .] [authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information, .] [authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information] [authorize, visitors, granting, entry, physical, areas, containing, restricted, data, restricted, information] [(authorize, JJ), (visitors, NNS), (granting, VBG), (entry, NN), (physical, JJ), (areas, NNS), (containing, VBG), (restricted, VBN), (data, NNS), (restricted, VBN), (information, NN)] [(authorize, a), (visitors, n), (granting, v), (entry, n), (physical, a), (areas, n), (containing, v), (restricted, v), (data, n), (restricted, v), (information, n)] [authorize, visitor, grant, entry, physical, area, contain, restrict, data, restrict, information] Preventive
525 Authorize visitors before granting entry to physical areas containing restricted data or restricted information. [Authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information, .] [authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information, .] [authorize, visitors, before, granting, entry, to, physical, areas, containing, restricted, data, or, restricted, information] [authorize, visitors, granting, entry, physical, areas, containing, restricted, data, restricted, information] [(authorize, JJ), (visitors, NNS), (granting, VBG), (entry, NN), (physical, JJ), (areas, NNS), (containing, VBG), (restricted, VBN), (data, NNS), (restricted, VBN), (information, NN)] [(authorize, a), (visitors, n), (granting, v), (entry, n), (physical, a), (areas, n), (containing, v), (restricted, v), (data, n), (restricted, v), (information, n)] [authorize, visitor, grant, entry, physical, area, contain, restrict, data, restrict, information] Preventive
526 Control physical access to (and within) the facility. [Control, physical, access, to, (, and, within, ), the, facility, .] [control, physical, access, to, (, and, within, ), the, facility, .] [control, physical, access, to, and, within, the, facility] [control, physical, access, within, facility] [(control, NN), (physical, JJ), (access, NN), (within, IN), (facility, NN)] [(control, n), (physical, a), (access, n), (within, n), (facility, n)] [control, physical, access, within, facility] Preventive
527 Control physical access to (and within) the facility. [Control, physical, access, to, (, and, within, ), the, facility, .] [control, physical, access, to, (, and, within, ), the, facility, .] [control, physical, access, to, and, within, the, facility] [control, physical, access, within, facility] [(control, NN), (physical, JJ), (access, NN), (within, IN), (facility, NN)] [(control, n), (physical, a), (access, n), (within, n), (facility, n)] [control, physical, access, within, facility] Preventive
528 Escort uncleared personnel who need to work in or access secure areas. [Escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas, .] [escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas, .] [escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas] [escort, uncleared, personnel, need, work, access, secure, areas] [(escort, NN), (uncleared, VBD), (personnel, NNS), (need, VBP), (work, NN), (access, NN), (secure, NN), (areas, NNS)] [(escort, n), (uncleared, v), (personnel, n), (need, v), (work, n), (access, n), (secure, n), (areas, n)] [escort, uncleared, personnel, need, work, access, secure, area] Preventive
529 Escort uncleared personnel who need to work in or access secure areas. [Escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas, .] [escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas, .] [escort, uncleared, personnel, who, need, to, work, in, or, access, secure, areas] [escort, uncleared, personnel, need, work, access, secure, areas] [(escort, NN), (uncleared, VBD), (personnel, NNS), (need, VBP), (work, NN), (access, NN), (secure, NN), (areas, NNS)] [(escort, n), (uncleared, v), (personnel, n), (need, v), (work, n), (access, n), (secure, n), (areas, n)] [escort, uncleared, personnel, need, work, access, secure, area] Preventive
530 Identify and document physical access controls for all physical entry points. [Identify, and, document, physical, access, controls, for, all, physical, entry, points, .] [identify, and, document, physical, access, controls, for, all, physical, entry, points, .] [identify, and, document, physical, access, controls, for, all, physical, entry, points] [identify, document, physical, access, controls, physical, entry, points] [(identify, VB), (document, JJ), (physical, JJ), (access, NN), (controls, NNS), (physical, JJ), (entry, NN), (points, NNS)] [(identify, v), (document, a), (physical, a), (access, n), (controls, n), (physical, a), (entry, n), (points, n)] [identify, document, physical, access, control, physical, entry, point] Preventive
531 Identify and document physical access controls for all physical entry points. [Identify, and, document, physical, access, controls, for, all, physical, entry, points, .] [identify, and, document, physical, access, controls, for, all, physical, entry, points, .] [identify, and, document, physical, access, controls, for, all, physical, entry, points] [identify, document, physical, access, controls, physical, entry, points] [(identify, VB), (document, JJ), (physical, JJ), (access, NN), (controls, NNS), (physical, JJ), (entry, NN), (points, NNS)] [(identify, v), (document, a), (physical, a), (access, n), (controls, n), (physical, a), (entry, n), (points, n)] [identify, document, physical, access, control, physical, entry, point] Preventive
532 Escort visitors within the facility, as necessary. [Escort, visitors, within, the, facility, ,, as, necessary, .] [escort, visitors, within, the, facility, ,, as, necessary, .] [escort, visitors, within, the, facility, as, necessary] [escort, visitors, within, facility, necessary] [(escort, NN), (visitors, NNS), (within, IN), (facility, NN), (necessary, JJ)] [(escort, n), (visitors, n), (within, n), (facility, n), (necessary, a)] [escort, visitor, within, facility, necessary] Preventive
533 Escort visitors within the facility, as necessary. [Escort, visitors, within, the, facility, ,, as, necessary, .] [escort, visitors, within, the, facility, ,, as, necessary, .] [escort, visitors, within, the, facility, as, necessary] [escort, visitors, within, facility, necessary] [(escort, NN), (visitors, NNS), (within, IN), (facility, NN), (necessary, JJ)] [(escort, n), (visitors, n), (within, n), (facility, n), (necessary, a)] [escort, visitor, within, facility, necessary] Preventive
534 Manage visitor identification inside the facility. [Manage, visitor, identification, inside, the, facility, .] [manage, visitor, identification, inside, the, facility, .] [manage, visitor, identification, inside, the, facility] [manage, visitor, identification, inside, facility] [(manage, NN), (visitor, NN), (identification, NN), (inside, IN), (facility, NN)] [(manage, n), (visitor, n), (identification, n), (inside, n), (facility, n)] [manage, visitor, identification, inside, facility] Preventive
535 Manage visitor identification inside the facility. [Manage, visitor, identification, inside, the, facility, .] [manage, visitor, identification, inside, the, facility, .] [manage, visitor, identification, inside, the, facility] [manage, visitor, identification, inside, facility] [(manage, NN), (visitor, NN), (identification, NN), (inside, IN), (facility, NN)] [(manage, n), (visitor, n), (identification, n), (inside, n), (facility, n)] [manage, visitor, identification, inside, facility] Preventive
536 Maintain and review facility access lists of personnel who have been granted authorized entry to (and within) facilities that contain restricted data or restricted information. [Maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, (, and, within, ), facilities, that, contain, restricted, data, or, restricted, information, .] [maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, (, and, within, ), facilities, that, contain, restricted, data, or, restricted, information, .] [maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, and, within, facilities, that, contain, restricted, data, or, restricted, information] [maintain, review, facility, access, lists, personnel, granted, authorized, entry, within, facilities, contain, restricted, data, restricted, information] [(maintain, NN), (review, NN), (facility, NN), (access, NN), (lists, NNS), (personnel, NNS), (granted, VBN), (authorized, JJ), (entry, NN), (within, IN), (facilities, NNS), (contain, VBP), (restricted, VBN), (data, NNS), (restricted, VBN), (information, NN)] [(maintain, n), (review, n), (facility, n), (access, n), (lists, n), (personnel, n), (granted, v), (authorized, a), (entry, n), (within, n), (facilities, n), (contain, v), (restricted, v), (data, n), (restricted, v), (information, n)] [maintain, review, facility, access, list, personnel, grant, authorized, entry, within, facility, contain, restrict, data, restrict, information] Preventive
537 Maintain and review facility access lists of personnel who have been granted authorized entry to (and within) facilities that contain restricted data or restricted information. [Maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, (, and, within, ), facilities, that, contain, restricted, data, or, restricted, information, .] [maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, (, and, within, ), facilities, that, contain, restricted, data, or, restricted, information, .] [maintain, and, review, facility, access, lists, of, personnel, who, have, been, granted, authorized, entry, to, and, within, facilities, that, contain, restricted, data, or, restricted, information] [maintain, review, facility, access, lists, personnel, granted, authorized, entry, within, facilities, contain, restricted, data, restricted, information] [(maintain, NN), (review, NN), (facility, NN), (access, NN), (lists, NNS), (personnel, NNS), (granted, VBN), (authorized, JJ), (entry, NN), (within, IN), (facilities, NNS), (contain, VBP), (restricted, VBN), (data, NNS), (restricted, VBN), (information, NN)] [(maintain, n), (review, n), (facility, n), (access, n), (lists, n), (personnel, n), (granted, v), (authorized, a), (entry, n), (within, n), (facilities, n), (contain, v), (restricted, v), (data, n), (restricted, v), (information, n)] [maintain, review, facility, access, list, personnel, grant, authorized, entry, within, facility, contain, restrict, data, restrict, information] Preventive
538 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
539 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
540 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
541 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
542 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
543 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
544 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
545 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
546 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
547 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
548 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
549 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
550 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
551 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
552 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
553 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
554 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
555 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
556 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
557 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
558 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
559 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
560 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
561 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
562 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
563 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
564 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
565 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
566 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
567 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
568 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
569 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
570 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
571 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
572 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
573 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
574 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
575 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
576 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
577 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
578 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
579 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
580 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
581 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
582 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
583 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
584 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
585 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
586 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
587 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
588 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
589 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
590 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
591 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
592 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
593 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
594 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
595 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
596 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
597 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
598 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
599 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
600 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
601 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
602 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
603 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
604 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
605 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
606 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
607 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
608 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
609 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
610 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
611 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
612 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
613 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
614 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
615 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
616 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
617 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
618 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
619 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
620 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
621 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
622 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
623 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
624 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
625 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
626 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
627 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
628 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
629 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
630 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
631 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
632 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
633 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
634 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
635 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
636 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
637 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
638 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
639 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
640 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
641 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
642 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
643 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
644 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
645 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
646 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
647 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
648 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
649 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
650 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
651 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
652 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
653 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
654 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
655 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
656 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
657 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
658 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
659 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
660 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
661 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
662 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
663 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
664 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
665 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
666 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
667 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
668 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
669 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
670 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
671 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
672 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
673 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
674 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
675 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
676 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
677 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
678 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
679 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
680 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
681 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
682 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
683 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
684 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
685 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
686 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
687 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
688 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
689 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
690 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
691 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
692 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
693 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
694 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
695 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
696 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
697 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
698 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
699 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
700 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
701 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
702 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
703 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
704 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
705 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
706 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
707 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
708 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
709 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
710 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
711 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
712 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
713 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
714 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
715 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
716 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
717 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
718 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
719 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
720 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
721 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
722 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
723 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
724 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
725 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
726 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
727 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
728 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
729 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
730 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
731 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
732 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
733 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
734 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
735 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
736 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
737 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
738 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
739 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
740 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
741 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
742 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
743 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
744 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
745 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
746 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
747 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
748 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
749 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
750 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
751 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
752 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
753 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
754 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
755 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
756 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
757 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
758 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
759 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
760 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
761 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
762 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
763 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
764 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
765 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
766 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
767 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
768 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
769 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
770 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
771 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
772 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
773 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
774 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
775 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
776 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
777 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
778 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
779 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
780 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
781 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
782 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
783 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
784 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
785 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
786 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
787 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
788 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
789 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
790 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
791 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
792 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
793 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
794 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
795 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
796 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
797 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
798 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
799 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
800 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
801 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
802 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
803 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
804 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
805 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
806 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
807 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
808 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
809 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
810 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
811 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
812 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
813 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
814 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
815 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
816 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
817 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
818 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
819 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
820 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
821 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
822 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
823 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
824 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
825 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
826 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
827 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
828 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
829 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
830 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
831 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
832 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
833 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
834 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
835 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
836 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
837 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
838 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
839 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
840 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
841 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
842 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
843 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
844 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
845 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
846 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
847 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
848 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
849 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
850 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
851 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
852 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
853 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
854 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
855 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
856 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
857 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
858 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
859 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
860 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
861 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
862 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
863 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
864 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
865 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
866 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
867 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
868 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
869 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
870 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
871 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
872 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
873 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
874 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
875 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
876 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
877 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
878 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
879 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
880 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
881 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
882 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
883 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
884 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
885 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
886 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
887 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
888 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
889 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
890 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
891 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
892 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
893 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
894 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
895 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
896 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
897 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
898 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
899 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
900 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
901 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
902 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
903 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
904 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
905 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
906 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
907 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
908 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
909 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
910 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
911 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
912 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
913 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
914 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
915 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
916 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
917 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
918 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
919 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
920 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
921 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
922 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
923 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
924 Establish and maintain electronic storage media management procedures. [Establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures, .] [establish, and, maintain, electronic, storage, media, management, procedures] [establish, maintain, electronic, storage, media, management, procedures] [(establish, VB), (maintain, NN), (electronic, JJ), (storage, NN), (media, NNS), (management, NN), (procedures, NNS)] [(establish, v), (maintain, n), (electronic, a), (storage, n), (media, n), (management, n), (procedures, n)] [establish, maintain, electronic, storage, medium, management, procedure] Preventive
925 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
926 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
927 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
928 Capture the records required by organizational compliance requirements. [Capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements, .] [capture, the, records, required, by, organizational, compliance, requirements] [capture, records, required, organizational, compliance, requirements] [(capture, NN), (records, NNS), (required, VBN), (organizational, JJ), (compliance, NN), (requirements, NNS)] [(capture, n), (records, n), (required, v), (organizational, a), (compliance, n), (requirements, n)] [capture, record, require, organizational, compliance, requirement] Detective
929 Establish and maintain records management policies used to manage organizational records. [Establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, policies, used, to, manage, organizational, records] [establish, maintain, records, management, policies, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (policies, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (policies, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, policy, use, manage, organizational, record] Preventive
930 Establish and maintain a record classification scheme. [Establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme, .] [establish, and, maintain, a, record, classification, scheme] [establish, maintain, record, classification, scheme] [(establish, VB), (maintain, NN), (record, NN), (classification, NN), (scheme, NN)] [(establish, v), (maintain, n), (record, n), (classification, n), (scheme, n)] [establish, maintain, record, classification, scheme] Preventive
931 Establish and maintain records management procedures used to manage organizational records. [Establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records, .] [establish, and, maintain, records, management, procedures, used, to, manage, organizational, records] [establish, maintain, records, management, procedures, used, manage, organizational, records] [(establish, VB), (maintain, NN), (records, NNS), (management, NN), (procedures, NNS), (used, VBN), (manage, JJ), (organizational, JJ), (records, NNS)] [(establish, v), (maintain, n), (records, n), (management, n), (procedures, n), (used, v), (manage, a), (organizational, a), (records, n)] [establish, maintain, record, management, procedure, use, manage, organizational, record] Preventive
932 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
933 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
934 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
935 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
936 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
937 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
938 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
939 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
940 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
941 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
942 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
943 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
944 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
945 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
946 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
947 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
948 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
949 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
950 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
951 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
952 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
953 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
954 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
955 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
956 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
957 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
958 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
959 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
960 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
961 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
962 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
963 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
964 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
965 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
966 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
967 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
968 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
969 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
970 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
971 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
972 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
973 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
974 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
975 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
976 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
977 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
978 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
979 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
980 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
981 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
982 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
983 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
984 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
985 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
986 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
987 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
988 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
989 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
990 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
991 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
992 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
993 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
994 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
995 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
996 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
997 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
998 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
999 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1000 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1001 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1002 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1003 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1004 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1005 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1006 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1007 Establish and maintain a remote access and teleworking program. [Establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program, .] [establish, and, maintain, a, remote, access, and, teleworking, program] [establish, maintain, remote, access, teleworking, program] [(establish, VB), (maintain, NN), (remote, JJ), (access, NN), (teleworking, VBG), (program, NN)] [(establish, v), (maintain, n), (remote, a), (access, n), (teleworking, v), (program, n)] [establish, maintain, remote, access, teleworking, program] Preventive
1008 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1009 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1010 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1011 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1012 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1013 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1014 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1015 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1016 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1017 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1018 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1019 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1020 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1021 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1022 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1023 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1024 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1025 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1026 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1027 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1028 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1029 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1030 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1031 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1032 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1033 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1034 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1035 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1036 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1037 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1038 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1039 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1040 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1041 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1042 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1043 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1044 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1045 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1046 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1047 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1048 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1049 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1050 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1051 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1052 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1053 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1054 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1055 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1056 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1057 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1058 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1059 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1060 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1061 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1062 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1063 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1064 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1065 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1066 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1067 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1068 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1069 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1070 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1071 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1072 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1073 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1074 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1075 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1076 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1077 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1078 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1079 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1080 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1081 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1082 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1083 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1084 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1085 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1086 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1087 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1088 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1089 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1090 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1091 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1092 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1093 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1094 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1095 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1096 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1097 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1098 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1099 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1100 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1101 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1102 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1103 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1104 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1105 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1106 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1107 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1108 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1109 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1110 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1111 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1112 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1113 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1114 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1115 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1116 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1117 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1118 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1119 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1120 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1121 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1122 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1123 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1124 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1125 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1126 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1127 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1128 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1129 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1130 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1131 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1132 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1133 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1134 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1135 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1136 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1137 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1138 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1139 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1140 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1141 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1142 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1143 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1144 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1145 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1146 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1147 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1148 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1149 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1150 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1151 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1152 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1153 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1154 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1155 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1156 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1157 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1158 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1159 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1160 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1161 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1162 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1163 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1164 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1165 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1166 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1167 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1168 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1169 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1170 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1171 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1172 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1173 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1174 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1175 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1176 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1177 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1178 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1179 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1180 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1181 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1182 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1183 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1184 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1185 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1186 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1187 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1188 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1189 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1190 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1191 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1192 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1193 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1194 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1195 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1196 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1197 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1198 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1199 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1200 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1201 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1202 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1203 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1204 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1205 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1206 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1207 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1208 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1209 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1210 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1211 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1212 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1213 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1214 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1215 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1216 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1217 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1218 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1219 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1220 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1221 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1222 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1223 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1224 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1225 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1226 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1227 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1228 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1229 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1230 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1231 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1232 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1233 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1234 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1235 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1236 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1237 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1238 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1239 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1240 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1241 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1242 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1243 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1244 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1245 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1246 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1247 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1248 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1249 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1250 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1251 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1252 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1253 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1254 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1255 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1256 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1257 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1258 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1259 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1260 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1261 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1262 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1263 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1264 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1265 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1266 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1267 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1268 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1269 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1270 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1271 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1272 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1273 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1274 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1275 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1276 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1277 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1278 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1279 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1280 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1281 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1282 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1283 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1284 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1285 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1286 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1287 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1288 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1289 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1290 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1291 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1292 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1293 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1294 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1295 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1296 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1297 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1298 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1299 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1300 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1301 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1302 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1303 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1304 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1305 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1306 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1307 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1308 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1309 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1310 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1311 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1312 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1313 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1314 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1315 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1316 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1317 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1318 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1319 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1320 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1321 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1322 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1323 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1324 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1325 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1326 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1327 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1328 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1329 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1330 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1331 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1332 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1333 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1334 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1335 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1336 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1337 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1338 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1339 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1340 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1341 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1342 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1343 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1344 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1345 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1346 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1347 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1348 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1349 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1350 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1351 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1352 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1353 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1354 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1355 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1356 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1357 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1358 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1359 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1360 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1361 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1362 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1363 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1364 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1365 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1366 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1367 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1368 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1369 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1370 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1371 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1372 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1373 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1374 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1375 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1376 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1377 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1378 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1379 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1380 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1381 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1382 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1383 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1384 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1385 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1386 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1387 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1388 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1389 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1390 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1391 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1392 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1393 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1394 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1395 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1396 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1397 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1398 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1399 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1400 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1401 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1402 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1403 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1404 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1405 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1406 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1407 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1408 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1409 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1410 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1411 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1412 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1413 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1414 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1415 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1416 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1417 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1418 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1419 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1420 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1421 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1422 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1423 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1424 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1425 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1426 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1427 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1428 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1429 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1430 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1431 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1432 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1433 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1434 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1435 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1436 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1437 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1438 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1439 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1440 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1441 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1442 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1443 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1444 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1445 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1446 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1447 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1448 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1449 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1450 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1451 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1452 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1453 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1454 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1455 Protect remote access accounts with encryption. [Protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption, .] [protect, remote, access, accounts, with, encryption] [protect, remote, access, accounts, encryption] [(protect, JJ), (remote, JJ), (access, NN), (accounts, NNS), (encryption, NN)] [(protect, a), (remote, a), (access, n), (accounts, n), (encryption, n)] [protect, remote, access, account, encryption] Preventive
1456 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1457 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1458 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
1459 Implement two-factor authentication techniques. [Implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques, .] [implement, two-factor, authentication, techniques] [implement, two-factor, authentication, techniques] [(implement, JJ), (two-factor, JJ), (authentication, NN), (techniques, NNS)] [(implement, a), (two-factor, a), (authentication, n), (techniques, n)] [implement, two-factor, authentication, technique] Preventive
1460 Control remote access through a network access control. [Control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control, .] [control, remote, access, through, a, network, access, control] [control, remote, access, network, access, control] [(control, NN), (remote, VBZ), (access, NN), (network, NN), (access, NN), (control, NN)] [(control, n), (remote, v), (access, n), (network, n), (access, n), (control, n)] [control, remote, access, network, access, control] Preventive
1461 Disallow remote users from copying files to remote devices. [Disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices, .] [disallow, remote, users, from, copying, files, to, remote, devices] [disallow, remote, users, copying, files, remote, devices] [(disallow, JJ), (remote, NN), (users, NNS), (copying, VBG), (files, NNS), (remote, VBP), (devices, NNS)] [(disallow, a), (remote, n), (users, n), (copying, v), (files, n), (remote, v), (devices, n)] [disallow, remote, user, copy, file, remote, device] Preventive
1462 Monitor and evaluate all remote access usage. [Monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage, .] [monitor, and, evaluate, all, remote, access, usage] [monitor, evaluate, remote, access, usage] [(monitor, NN), (evaluate, JJ), (remote, JJ), (access, NN), (usage, NN)] [(monitor, n), (evaluate, a), (remote, a), (access, n), (usage, n)] [monitor, evaluate, remote, access, usage] Detective
1463 Control all methods of remote access and teleworking. [Control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking, .] [control, all, methods, of, remote, access, and, teleworking] [control, methods, remote, access, teleworking] [(control, NN), (methods, NNS), (remote, VBP), (access, NN), (teleworking, NN)] [(control, n), (methods, n), (remote, v), (access, n), (teleworking, n)] [control, method, remote, access, teleworking] Preventive
In [34]:
df_new['str_lemmatized'] = str(df_new['lemmatized'])
In [35]:
from wordcloud import WordCloud
wc=WordCloud(width=2000,height=2000,background_color='white')
wc = wc.generate(df_new[df_new['Target']=='Preventive']['str_lemmatized'].str.cat(sep=" "))
plt.imshow(wc)
Out[35]:
<matplotlib.image.AxesImage at 0x15f87a20550>

Model Building¶

In [36]:
X = df_new.lemmatized.astype(str)
y=df_new.Target
In [37]:
from sklearn.preprocessing import LabelEncoder
encoder = LabelEncoder()
y=encoder.fit_transform(y)    
In [38]:
from sklearn.feature_extraction.text import TfidfVectorizer
tf = TfidfVectorizer()
tf.fit(X)
tfidf_X = tf.transform(X).toarray()
In [39]:
import pickle
#pickle.dump(tf,open('transform.pkl','wb'))
In [40]:
X_train,X_test,y_train,y_test = train_test_split(tfidf_X,y,test_size=0.8,stratify=y,shuffle=True)
In [41]:
from sklearn.naive_bayes import MultinomialNB
model = MultinomialNB()
model.fit(X_train,y_train)
predicted = model.predict(X_test)
expected = y_test
from sklearn import metrics
print(metrics.classification_report(expected, predicted))
print(metrics.confusion_matrix(expected, predicted))
              precision    recall  f1-score   support

           0       0.90      0.96      0.93       139
           1       0.99      0.99      0.99      1033

    accuracy                           0.98      1172
   macro avg       0.95      0.97      0.96      1172
weighted avg       0.98      0.98      0.98      1172

[[ 133    6]
 [  14 1019]]
In [42]:
cm =metrics.confusion_matrix(expected, predicted)
cm_df = pd.DataFrame(cm,index=['Preventive','Detective'],columns=['Preventive','Detective'])
fig= px.imshow(cm_df,text_auto=True,labels=dict(x="Actual Value", y="Predicted Value"))
fig.update_xaxes(side="top")
fig.show()
In [43]:
px.bar(pd.DataFrame(df_new['Target'].value_counts()))
Clearly there is a imbalance in the dataset hence we need to balance the dataset using SMOTE¶
In [44]:
from imblearn.over_sampling import SMOTE
sm=SMOTE()
X_sm,y_sm = sm.fit_resample(tfidf_X,y)
In [45]:
X_train,X_test,y_train,y_test = train_test_split(X_sm,y_sm ,test_size=0.9,shuffle=True,stratify=y_sm)
In [46]:
from sklearn.naive_bayes import MultinomialNB
model_sm = MultinomialNB()
model_sm.fit(X_train,y_train)
predicted = model_sm.predict(X_test)
expected = y_test
from sklearn import metrics
print(metrics.classification_report(expected, predicted))
print(metrics.confusion_matrix(expected, predicted))
              precision    recall  f1-score   support

           0       1.00      0.98      0.99      1161
           1       0.98      1.00      0.99      1161

    accuracy                           0.99      2322
   macro avg       0.99      0.99      0.99      2322
weighted avg       0.99      0.99      0.99      2322

[[1137   24]
 [   0 1161]]
In [47]:
cm =metrics.confusion_matrix(expected, predicted)
cm_df = pd.DataFrame(cm,index=['Preventive','Detective'],columns=['Preventive','Detective'])
fig= px.imshow(cm_df,text_auto=True,labels=dict(x="Actual Value", y="Predicted Value"))
fig.update_xaxes(side="top")
fig.show()

Pickling the model for Deployment¶

In [48]:
#pickle.dump(model_sm,open('model.pkl','wb'))
In [49]:
message = 'Monitor for unauthorized physical access at physical entry points'
data = [message]
vect = tf.transform(data).toarray()
prediction = model_sm.predict(vect)
prediction
Out[49]:
array([0])